home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…nuary (Partner) - Disc 2 / The Apple Reference and Presentations Library (Disc 2)(January 1994).iso / Diehl Graphsoft / German / MiniCad / MiniCad-PPC / MiniCad 5.0.1-D / MiniCad 5.0.1-D.rsrc / STR#_7014.txt < prev    next >
Text File  |  1994-10-06  |  1KB  |  41 lines

  1. Coverts all characters in V to uppercase
  2.  
  3. UprString(VAR V : STRING);
  4.  
  5. Covert a REAL value into a STRING.  The numeric value will be displayed in the current unit settings of the drawing
  6.  
  7. Num2StrF( V : REAL);
  8.  
  9. Converts a REAL value to a STRING
  10.  
  11. Num2Str(DecimalPlace : INTEGER;  V : REAL) : STRING;
  12.  
  13. Converts numeric string value to a REAL number
  14.  
  15. Str2Num( V : REAL) : REAL;
  16.  
  17. Insert Source into Dest at location Dest[Index]
  18.  
  19. Insert(Source : STRING; VAR Dest : STRING; Index : INTEGER);
  20.  
  21. Removes Count characters from the value of Source beginning at Source[Index]
  22.  
  23. Delete(VAR Source : STRING;  Index,Count : INTEGER);
  24.  
  25. Returns a string containing count characters from source, beginning at source[Index]
  26.  
  27. Copy(Source : STRING;  Index,Count : INTEGER) : STRING;
  28.  
  29. Concatenates all the parameters in the order they are written and returns the concatenated string
  30.  
  31. Concat(Str1,Str2,Str3,...,Strn : STRING) : STRING;
  32.  
  33. Searches for the SubStr within the Str and returns an integer value that is the index of the first character of SubStr within Str
  34.  
  35. Pos(SubStr,Str : STRING) : INTEGER;
  36.  
  37. Returns the number of characters in a string
  38.  
  39. Len( v : STRING) : INTEGER;
  40.  
  41.